home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utilwb / mf4fxdsk.lha / fax_for_MTerm4.0 / source / faxGUI.h < prev    next >
C/C++ Source or Header  |  1996-05-03  |  590b  |  39 lines

  1. #ifndef GUI_FILE_H
  2. #define GUI_FILE_H
  3.  
  4. /* Types */
  5. #include <exec/types.h>
  6. #include "fax_cat.h"
  7.  
  8. struct ObjApp
  9. {
  10.     APTR    App;
  11.     APTR    Fax_Win;
  12.     APTR    MN_label_1;
  13.     APTR    BT_Printer;
  14.     APTR    BT_Spooler;
  15.     APTR    BT_Logbook;
  16.     APTR    BT_Config;
  17.     APTR    BT_Desktop;
  18.     APTR    BT_Phone;
  19.     APTR    BT_View;
  20.     APTR    BT_End;
  21.     APTR    Info_Win;
  22.     APTR    TX_ueber;
  23.     APTR    BT_OK;
  24.     char *    STR_TX_ueber;
  25. };
  26.  
  27. #define BT_PRINTER 1
  28. #define BT_SPOOLER 2
  29. #define BT_LOGBOOK 3
  30. #define BT_CONFIG 4
  31. #define BT_DESK 5
  32. #define BT_PHONE 6
  33. #define BT_VIEW 7
  34.  
  35. extern struct ObjApp * CreateApp(void);
  36. extern void DisposeApp(struct ObjApp *);
  37.  
  38. #endif
  39.